/* file: https://fm.cnbc.com/applications/cnbc.com/resources/files/2014/06/12/source_text.js?vn=1402584684*/
$('.group-container:last p:last').addClass('source-text');
/* file: https://fm.cnbc.com/applications/cnbc.com/resources/files/2014/06/19/hide-list-top-states_0.js?vn=1403548396*/
$('.group-container:nth-child(3)').attr("id","list");
var getOS = function() {
    var operatingSystems = {
        'Win': 'Windows',
        'Mac': 'MacOS',
        'Linux': 'Linux',
        'X11': 'UNIX',
        'Android': 'Android',
        'iOS': 'iOS',
        'IE7': 'MSIE 7.',
        'IE8': 'MSIE 8.'
    };
    for(var i in operatingSystems) {
        if(navigator.appVersion.indexOf(i) !== -1) {
            return operatingSystems[i];
        }
    }
    return undefined;
};

console.log(getOS());

var os = getOS();
if (typeof os === "undefined"){
document.getElementById('list').style.display = 'block';
} else {
document.getElementById('list').style.display = 'none';
}
 
